From: Jonathan Lebon Date: Wed, 16 Aug 2017 13:10:39 +0000 (-0400) Subject: pull: mention libcurl in NOT_SUPPORTED pull path X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~33^2~8 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=c0e20861d537730e7c5078d2f2cddda3e5a689fe;p=ostree.git pull: mention libcurl in NOT_SUPPORTED pull path Since it's now possible to build without libsoup but still have HTTP functionality. Closes: #1082 Approved by: cgwalters --- diff --git a/src/libostree/ostree-repo-pull.c b/src/libostree/ostree-repo-pull.c index 337190ce..e21342fe 100644 --- a/src/libostree/ostree-repo-pull.c +++ b/src/libostree/ostree-repo-pull.c @@ -5662,7 +5662,7 @@ ostree_repo_pull_with_options (OstreeRepo *self, GError **error) { g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, - "This version of ostree was built without libsoup, and cannot fetch over HTTP"); + "This version of ostree was built without libsoup or libcurl, and cannot fetch over HTTP"); return FALSE; } @@ -5676,7 +5676,7 @@ ostree_repo_remote_fetch_summary_with_options (OstreeRepo *self, GError **error) { g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, - "This version of ostree was built without libsoup, and cannot fetch over HTTP"); + "This version of ostree was built without libsoup or libcurl, and cannot fetch over HTTP"); return FALSE; }